ASP.NET Core MVC Controls | ComponentOne
C1.Web.Mvc Namespace / FlexChartBase<T> Class / ItemFormatter Property






In This Topic
    ItemFormatter Property (FlexChartBase<T>)
    In This Topic
    Gets or sets the name of the item formatter function that allows you to customize the appearance of data points.
    Syntax
    'Declaration
     
    
    <JsonConverterAttribute(C1.JsonNet.Converters.FunctionConverter)>
    Public Overridable Property ItemFormatter As System.String
    'Usage
     
    
    Dim instance As FlexChartBase(Of T)
    Dim value As System.String
     
    instance.ItemFormatter = value
     
    value = instance.ItemFormatter
    [JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
    public virtual System.string ItemFormatter {get; set;}
    public read-write property ItemFormatter: System.String; virtual; 
    JsonConverterAttribute(C1.JsonNet.Converters.FunctionConverter)
    public function get,set ItemFormatter : System.String
    [JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
    public: __property virtual System.string* get_ItemFormatter();
    public: __property virtual void set_ItemFormatter( 
       System.string* value
    );
    [JsonConverter(C1.JsonNet.Converters.FunctionConverter)]
    public:
    virtual property System.String^ ItemFormatter {
       System.String^ get();
       void set (    System.String^ value);
    }
    See Also